home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / research / examples / doc / cntour01 < prev    next >
Text File  |  1997-07-08  |  392b  |  13 lines

  1. ; This batch file defines variables used in the examples in 
  2. ; Chapter 11, "Plotting Multi-dimensional Arrays", of _Using IDL_.
  3.  
  4. ; Restore Maroon Bells data into the IDL variable "elev".
  5.  
  6. RESTORE, FILEPATH('marbells.dat', SUBDIR=['examples','data'])
  7.  
  8. ; Make the x and y vectors giving the position of each column and row.
  9.  
  10. X = 326.850 + .030 * FINDGEN(72)    
  11. Y = 4318.500 + .030 * FINDGEN(92)
  12.  
  13.